* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
  }
  body {
    background: linear-gradient(to bottom, #000000, #323232);
    background-attachment: fixed;
  }
  
  .photography-title-container{
    /* display:flex; */
    padding: 2%;
    text-align: center;
    justify-content: center;
    
  }
  .photography-title-container h3{
    /* border:1px solid blue; */
    margin-top: 20px ;
    font-size: 2em;
  }
  .logo {
    position: relative;
    /* top: 30px;
    left: 40px; */
    max-width: 120px;
    width: 50%;
    height: auto;
  }
  .img-gallery {
    width: 80%;
    height:100%;
    margin: 50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
  }
  
  .img-gallery img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.4s;
    object-fit: contain;
  }
  
  .img-gallery img:hover {
    transform: scale(1.1) rotate(-10deg);
    border-radius: 15px;
    box-shadow: 0 32px 75px rgb(0, 0, 0);
  }
  
  .full-img {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.456);
    position: fixed;
    top: 0;
    left: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  .full-img img {
    width: 100%;
    max-width: 550px;
    max-height: 600px;
    border-radius: 10px ;
    object-fit: contain;
  }
  
  .full-img span {
    position: absolute;
    top: 5%;
    padding: 1%;
    right: 5%;
    font-size: 2.5em;
    color: black;
    /* border: #000000 2px solid; */
    cursor: pointer;
    font-weight: bolder;
  }
  

  @media screen and (max-width:300px) {
    .img-gallery img{
      /* width:200px; */
      width:100%;
      max-height: 100%;
      max-width: 100%;

    }  
    .img-gallery{
      width:100%;
      padding: 5%;
      grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));

    }
    .photography-title-container h3{
      /* border:1px solid blue; */
      margin-top: 10px ;
      font-size: 1.5em;
    }
  }